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

[App] SimpleMockup (Useful for developers, fun for users!) [0.0.4, July 22nd, 2014)

$
0
0


SimpleMockup


Information
This application was designed to take advantage of building beautiful Android applications. That's the goal of the application. It is entirely open-sourced, and free to use.


What's included?
* ViewPager inside of a MenuDrawer
* Translucent StatusBar and NavigationBar for api19+
* Shows how to add a Header to a MenuDrawer, and an interactive footer, with an explanation in the code as to how im doing it
* Shows how to add a beautiful 'About' section, how to launch activities and use animation when opening said activities (Android L animations are included)
* Shows how to add an ImageView with a transparent statusbar. Not only does it look great, it also sort of mimics Android L
* Shows how to change the background colors of several elements of an application, how to create custom themes in styles
* How to programmatically set the fontfamily
* How to change the fontFamily in layouts, and in the styles.xml
* Shows how to create a custom request page that actually works. It will copy the title and body over to the email client the user chooses, where they can easily send the email. I worked super hard on making it look beautiful. I strongly believe it shows, and comes in handy.
* much, much more. im ALWAYS improving on this. Seriously. I work on this like every day. haha



Screenshots:
Please see the Play Store screenshots, or install the app.


Download:
https://play.google.com/store/apps/d...m.kyler.mockup


Source
https://github.com/I-am-Reinvented/SimpleMockup


Heads up, the hidden text mentions donations. If you don't care about it, please do not unhide it.

 
I put a lot of time and work into this, and do it all for you guys. If you would like to show your appreciation, and feel as if a 'thank you' isnt enough, feel free to donate to me. That can be done via PayPal, and there should be a 'Donate to me' button under my profile if you're using the desktop version of XDA.

[MOD][TOOL] Flashable Persistent SSH Server

$
0
0
Code:

echo "The usual... STOP! READ ALL OF THIS POST BEFORE CONTINUING TO INSTALL:
I WILL NOT BE HELD RESPONSIBLE FOR LOSS OF DATA, LOSS OF ROOT ACCESS, BRICKED DEVICES,
CRY BABIES, TEMPER TANTRUMS RESULTING IN SMASHED DEVICES OR ANY OF THAT NOISE."


PERSIST DROID SSHD - The persistent lil SSH server
Quote:

I've modified an SSH server/daemon to install to /system using a .zip, start on boot and even function after the phone has been wiped of it's user data. Because dropbear is executed with root UID some ROMs even allow for removal su binaries and app while maintaining root shell /filesystem access on device through SSH.

FEATURES
Quote:

- Automatic start on boot
- User data wipe survival
- Automatic reverse ssh tunnel
- Automatic http tunnel
- Runs as root even without SU

DOWNLOADS
Quote:

XDA
GOO.IM

Prerequisites & Installation Instructions :good:
Quote:

Prereqs
-Initial root access/write access to /system

-Android Terminal Emulator, ADB shell or an SSH server installed from app store.

-Ability to write to /system

-Busybox installed (comes with most roms)

-BASH in /system/xbin (comes with most roms that include busybox)

-init.d support (for auto start on boot, which is the point of this )

-Custom Recovery clockworkmod 5 based for .zip install

Instruct
1. Install .zip via recovery (CWM or TWRP)

2. Reboot phone

3. Run sshd_config via Terminal Emulator, ADB or SSH client.
Code:

root@Android# sshd_config

---CONFIGURE-SSH-DAEMON---

Enter password: (default is blank on first run)

Enter new password: (no spaces or funky characters)
password written

Enter new port: 22 (enter an unused port for your SSH server to listen on 22 is default)
port set

---CONFIGURE-REVERSE-SSH---

Enter reverse listen port: 10000 (port used to connect back to device when on mobile)
port set

Enter remote server: example.com (address of remote server ip or domain)
server set

Enter remote serv port: (enter port remote server is listening)
port set

Enter remote username: admin (enter username on remote machine)
username set

Enable reverse ssh? y/n
Reverse SSH enabled

---CONFIGURE-HTTP-PROXY---

Enter socks listen port: 8080
port set

Enable http tunnel? n/y
HTTP tunnel disabled

---REMOVE-OLD-KEYS---

Remove old key(s)? n/y (keep or remove keys generated on first run)
Keeping old key(s)

---GENERATING-RSA-KEY---
...

---GENERATING-DSS-KEY---
...

Enter path to private key: /sdcard/path/to/opensshkey (used for reverse ssh connection)

---CONVERTING-PRIVATE-KEY---
...

Restarting dropbear with new settings...

done

FAQ :confused:
Quote:

I'm going to get this out of the way first thing. Some of it may be painfully obvious but I wanna get as many questions out of the way for those who may be inexperienced, so please bare with me.

Q. What is SSH?
A. SSH is a protocol for establishing secure communications between two computers. You can use it to send remote commands to machines, transfer files, encrypt other forms of communication & tunnel traffic to or from a remote machine. IMHO SSH is probably one of the most versatile protocols out there. If you'd like to learn more just head on over to wikipedia.

Q. I already use an SSH app on my device, what makes your mod so special?
A. That's a good question, so let me break it down... I used to use the SSH apps from the market & they're are great, but all of them lack some important features for me.

F. None of them will run after phone has been wiped of it's user data.
F. A lot of them have some kind of notification or status bar icon.
F. I haven't seen one that allows you to connect to your device when using a mobile data connection.

Q. How does all of this work?
A. It's actually pretty simple. I wrote a bash script that ask the user a series of questions then saves those answers to a file. Another set of scripts starts the server using the answers you specified as parameters. I based it in part on this guide, but my scripts handle all of the dirty work for you.
XDA:DevDB Information
PersistDroidSSHD, Tool/Utility for all devices (see above for details)

Contributors
Geofferey

Version Information
Status: Beta
Current Beta Version: 1.4
Beta Release Date: 2014-07-24

Created 2014-07-24
Last Updated 2014-07-24

[Q] With Custom ROM is it possible to require apps be signed by own signature?

$
0
0
With a custom ROM, is it possible to to create an image that will only allow apps signed by a predefined certificate? Essentially, can you build a ROM that will only run your own APKs? Has anyone tried this?

jmo

[QUESTION] How to receive values from sensor which isn't provided by Google API

$
0
0
Hello,
I'm looking for a solution to receive values of the "Laser Sensor", which LG G3 has built in. I searched Google, asked at stackoverflow and read the Google Android API Documentation a lot of times - but I didn't get the information I need.
Three weeks ago, I asked LG's support. They told me they will send my question to the developer department. I'm still waiting for an answer / reaction.
So I thought I will maybe get some information about this sensor if I decompile LGs Camera App - but reading the code is very confusing for me. :-/

At the moment I'm searching for a solution to take control over the infrared diode and the receiver by using adb and echoing values to sys/class/...-files.
But I didn't get something useful.

Kind XDA-people, if anybody know how to control/trigger (what ever) this infrared diode & sensor, please let me know.

[Q] Android on tablet vs Android on TV-dongle (a few issues on the dongle)

$
0
0
[ Hope this sub-forum is ok for this query...else please move it. I also develop native-apps, but today's questions are not
developer-related. ]

I've owned/operated my Nexus-7 for a year. (It's been updated from JellyBean 4.2(?) to KitKat (4.4.4).

This week, I purchased a Tronsmart CX-919 TV-attached HDMI-dongle, (and
the "Logitech MK 320 Keyboard / Mouse combo") for it. I selected this dongle at
Amazon, because it has the most-recent Android-version I could find, in the HDMI-dongle form factor.

[It's attached to my Samsung 46-inch TV, so I guess you could now say I have
a 46-inch tablet, but of course no touch-screen. ;) ]

Ok, a couple of issues/questions on the behavior of this dongle:

(1) So, I'm in the Chrome-browser, entering say, text in the URL field, or elsewhere.
Once I've forced focus, saying I want to enter text, the virtual keyboard appears on
the screen. Ok, so far. So I enter text until I'm happy, and then hit keyboard's
ENTER KEY. Nope, that key does nothing. They make me grab the mouse and
hit the virtual-keyboard's enter-key (aka 'GO")

Is there someway I can get the keybd's ENTER to work? Or learn to hit some other
keybd key as an equivalent?

(2) There's a widget on home screen showing Ghangshou's weather info, even tho
I've now used 'Settings' to force the clock to my correct Eastern-US timezone.

There's no Satellite/GPS chip in this thing, as far as I know, so where/why is
this widget getting the idea I'm in China? Maybe I just need to discard this
builtin weather-widget and install a different/smarter one?

EDIT: This issue has finally auto-corrected itself and is now a non-issue.
I now am seeing the correct locality specific weather info for my city. So, 'nevermind!'

TIA...

[Q] How to prevent screen sleep while USB debugging (LG G2, SlimKat)

$
0
0
Really basic question, arguably doesn't belong in development section.

I can't find the option in the phone settings to prevent phone from sleeping while USB debugging is active. I'm using the LG G2, running SlimKat ROM. The phone is rooted.

Is it even there?

Thanks

[Q] how to hack a phone?

$
0
0
I need help!
I really want to hack my gf's brother's phone.
He took screenshots of our chats and saved it into his own phone..
Please somebody help me to hack or do something about his gallery ..

wifi tether through ssh tunnel?

$
0
0
The carrier has a cap for daily tethering. Once the cap has been exceeded tethered traffic will get a really low QoS class (like 95% packet loss) but the phone can still get Internet at a reduced speed. I am not sure what method the carrier is using to detect tethering (ISPs can use so many ways to detect NAT, especially when DPI is used).
One way around it is to run a socks 5 proxy server through ssh dynamic port forwarding on the android phone, and let clients use the socks5 proxy on the phone. It seems existing ssh clients with dynamic port forwarding only listens on 127.0.0.1 so it's impossible to connect from another device. Is there any easy solution to bind the socks5 proxy to the wlan0 interface?

Jiayu G4C, help to download rom

$
0
0
hi,some one help me download this rom http://www.592zn.com/thread-317715-1-1.html , this rom have all know bugs fixed, but for some reason .zip file have password, i dont inderstand chinese, anyone that understand chinese can tell me what is password ?

i'm frustated because any guy from chinese forum reply me, maybe dont understand english, :(


Thanks

ps: sorry or my english.

[WIP] Creating "Windows To Go" Drive on Android

$
0
0
Hi All,
I've been wanting to create a Windows To Go Drive on my Android so that I can simply plug in my phone into any PC i want and voila, my own Windows 8.1!

I've only had limited success, so I wanted to ask the dev community what could be going wrong.

What I Used:
Sprint Galaxy Nexus (Rooted, 4.3)
DriveDroid
Sony Vaio Laptop running Windows 8 (Win7 and below dont have latest DISM or Diskpart) (Capable of UEFI booting)

What I Did:
1. Used DriveDroid to create a 10GB image file. It made the file, so i'm guessing that the internal sdcard of the Nexus is not FAT32. No Partition Table and no File System (Yet)

2. Plugged in the phone. Recognized it as a USB Drive.

3. Used Diskpart to clean drive, create primary partition, format as ntfs and set active

4. Extracted install.wim from Windows 8.1 Disc

5. Used DISM to copy image onto Blank USB Drive (Took around 2 hours)
**It's better to use DISM in comparison to ImageX, since ImageX is older and has mixed results

6. Used BCDBoot to copy boot files onto USB Drive

7. Rebooted. UEFI Boot Failed (Didnt even attempt to recognize the drive)

8. Legacy Boot WORKED! Reached Windows Boot Manager :o

From here though, the Boot Manager simply refuses to recognize the existence of a Bootable OS. (Screenshot uploaded) :crying:

I've been using EasyBCD to change the configuration to make it work. No results yet.

I dunno how close I am to making this work - Maybe really close or probably a gazillion miles away. But I've put a lot of thought and effort into this and was really hoping it would work. :laugh:

Any advice as to where i could be going wrong? :confused:

Attached Thumbnails
Click image for larger version

Name:	Screenshot_2014-07-30-22-24-56.png
Views:	N/A
Size:	92.7 KB
ID:	2876829   Click image for larger version

Name:	Screenshot_2014-07-30-22-25-11.png
Views:	N/A
Size:	84.7 KB
ID:	2876830  
Attached Images
File Type: jpg booterror.jpg - [Click for QR Code] (197.1 KB)

[MOD][Samsung Devices] Unlock Hidden Toggles in Notification Panel

$
0
0
Unlock Hidden Toggles in Notification Panel


I have seen few posts related to unlocking some hidden toggles (Galaxy s4,s3, ...) but none listed a way to add them all.


Tested on JB S4,S3, Note 3 & Light but it might work with other Samsung devices.


First of all you have to install sqlite3 in /system/xbin.
you can get one here : (thanks to Slaid480)
https://github.com/Slaid480/Android-...ee/Beta/sqlite

copy libncurses.so -> /system/lib/ (chmod 644)
copy sqlite3 -> /system/xbin/ (chmod 755)
Reboot

Backup (/data/data/com.android.providers.settings/databases/settings.db)
connect your device
  1. adb shell
  2. su
  3. Code:

    sqlite3 /data/data/com.android.providers.settings/databases/settings.db "insert into \"system\" values(null, 'notification_panel_active_app_list','Wifi;MobileData;Location;SilentMode;AutoRotate;Bluetooth;Ebook;DormantMode;WiFiHotspot;Brightness;PowerSaving;AllShareCast;MultiWindow;SBeam;Nfc;AirView;AirGesture;SmartNetwork;ToddlerMode;PersonalMode;DrivingMode;SmartStay;SmartScroll;SmartPause;Sync;AirplaneMode;DoNotDisturb;');"
  4. Code:

    sqlite3 /data/data/com.android.providers.settings/databases/settings.db "insert into \"system\" values(null, 'notification_panel_active_app_list_for_reset','Wifi;MobileData;Location;SilentMode;AutoRotate;Bluetooth;Ebook;DormantMode;WiFiHotspot;Brightness;PowerSaving;AllShareCast;MultiWindow;SBeam;Nfc;AirView;AirGesture;SmartNetwork;ToddlerMode;PersonalMode;DrivingMode;SmartStay;SmartScroll;SmartPause;Sync;AirplaneMode;DoNotDisturb;');"
  5. Reboot

Note: @jovy23 has posted another way to do it but you need to run factory reset.

Done !!

{script} self-repair important data

$
0
0
Hello my goal is to create a buckup/restore script that does the restore from a safe file on phone when some files are missing or damaged in some way .


So i need help to get it started
By my idea it should have already a prebuilt backup file from which it will restore missing files
So after flashing a zip or at boot it should always run and check if something is missing from specified location example system/etc/init.d

And when it finishes it should react if there are files that are missing or are damaged

For the files that miss that is simple but how to create a script that will check if the file is damaged

simple by checking it size

ok i know how this would work in theory but i dont know how to writte that kind of a script so please
help thank you i made a simple check files script here:




Code:

#!/system/bin/sh

clear
 
sleep 2
  echo ""
  echo "SPL ENGINE CORE is installed "
sleep 2
  echo ""
  echo "Checking for SPL ENGINE A.I. CORE ..."
sleep 1
if [ -e /system/spl_engine_1996 ]; then
  echo ""
  echo "SPL ENGINE CORE is installed..."
sleep 1
else
  echo ""
  echo "SPL ENGINE CORE binary was not found,please Re-flash SPL Transcender then try again!"
sleep 1
fi

but how to backup restore from backup folder if it is missing or damaged dont know please help me
this is an idea about a smart self repair script so dont abuse and help



latest code not working but an improvment i think

Code:

#!/system/bin/sh

clear

sleep 2
  echo ""
  echo "SPL ENGINE CORE is installed "
sleep 2
  echo ""
  echo "Checking for SPL ENGINE A.I. CORE ..."
sleep 1
if [ -e /system/spl_engine_1996 ]; then
  echo ""
  echo "SPL ENGINE CORE is installed..."
sleep 1
else
  echo ""
  echo "SPL ENGINE CORE binary was not found,please Re-flash SPL Transcender then try again!" then
  cp  ./system/data/secure/files/spl_engine_1996 ./system
  sleep 1
fi


found the solution for the copying eror it gave its in this line
looks like this :
Code:

cp  ./system/data/secure/files/spl_engine_1996 ./system
and it should look like this:

Code:

cp -rf  ./system/data/secure/files/spl_engine_1996  ./system

Two more things left:

1.make it run at every boot or for at a specific time 3 days a week
2.make it check if files are damaged

theese two steps will make it like artificial inteligence :D



hi i made some changes but i keep running into erors
the script now looks like this
Code:

#!/system/bin/sh

clear

FILENAME=/system/spl_engine_1996
FILESIZE=$(stat -c%s "$FILENAME")
RIGHTFILESIZE=3821568
sleep 2
  echo ""
  echo "SPL ENGINE CORE is installed "
sleep 2
  echo ""
  echo "Checking for SPL ENGINE A.I. CORE ..."
sleep 1
if  -d /system/spl_engine_1996 && [FILESIZE=$(stat -c%s "$FILENAME")];
if [ $FILESIZE == RIGHTFILESIZE ]; then
echo file is the right size $RIGHTFILESIZE
elsif
    echo file is corrupt size is under $RIGHTFILESIZE kilobytes
fi
then
  echo ""
  echo "SPL ENGINE CORE is installed..."
sleep 1
else
  echo ""
  echo "SPL ENGINE CORE binary was not found,!"
  cp -rf ./system/data/secure/files/spl_engine_1996 ./system
  sleep 1
fi

i get two erors one is

HTML Code:

/system/bin/testres[31] [-d :not found
/system/bin/testres[31] [: RIGHTFILESIZE : unexpected operator/operand

Must read!! | free in-app purchases in most of the games and apps

$
0
0
MUST READ!!!


Moderator edit...


Discussion of Warez and or directions or guides on how to cheat developers out of being paid is not allowed here at XDA

[Q] Recommend a phone that is not locked down

$
0
0
I am a Windows Phone developer who writes apps for wearable devices like the Pebble that are not supported or poorly supported on Windows Phone. In order to understand the Bluetooth protocol for the device I normally download the manufacturers apk for their device and decompile it to understand the Bluetooth packet requirements.

I have been using a Nexus 7 which has worked well but the last couple of devices I have purchased, Google Play will not allow me to download the apk because my Nexus 7 is not a phone. So the question is what would be the recommended pre-owned device I should get that will still allow me to download apps meant for an Android phone but still allow me to get to Google Play and the apk when downloaded.

If it makes a difference, I use Verizon but if a suitable phone was not available or too expensive, I would be willing to go with a phone I could not use on Verizon but still use Google Play on.

Thanks for any help you can provide.

[MOD][CM11][4.4.4][GPL] OpenPDroid patches for CyanogenMod 11

$
0
0
OpenPDroid patches for CyanogenMod 11

i am maintaining the OpenPDroid patches for CyanogenMod 11. find them here.

i made scripts you can use to easily patch and unpatch your source tree (and to make new patches from your tree):
  • opd-apply: apply patches to the affected components of the framework.
  • opd-diff-apply: apply patches and diff the output to a prior reference output to only show novelties.
  • opd-reset: remove patches by reseting the affected components from the local repos.
  • opd-remove-intermediates: delete previously built target files of the affected components.
  • opd-make-patches: create patches for the affected components from the live framework tree.

Ready-Made ROMs

XDA:DevDB Information
CM11-OpenPDroid, Tool/Utility for all devices (see above for details)

Contributors
Lanchon

Version Information
Status: Beta

Created 2014-08-06
Last Updated 2014-08-05

[TOOL/GUIDE] Unpack-Repack boot/recovery.img without Kitchen

[GUIDE] How to port recovery.img (easiest method)

$
0
0
MTK recovery porting method

Difficulty Level – Medium

Requirements –
1. Developing Skill
2. .img unpack-repack tool ( kitchen or other tool)
3. Notepad++
4. Brain
5. Little Respect

So Let’s start.......

Step 1 : Unpack both ( stock and port) recovey.img

How to Unpack-Repack without kitchen? Follow this tool/guide -->

Step 2 : Now open the default.prop file with NotePAD++ from the Extracted “rmdisk” FOLDER.
Open those build.prop file do all Changes the all changeable things what you can just like that we do when PORTING ROM.
Then COPY the ueventd, meta & factory files those are in (.vc) FILES from the STOCK “rmdisk” FOLDER to PORT…

Step 3 : FROM rmdisk>etc FOLDER open recovery.fstab FILE with NP++ .... REPLACE the from your Stock block with PORT mmcblk ……If you want replace with StockRecovery rmdisk>res>recovery.fstab or with workable RECOVERY. JUST replace the emmc block . If you dont know your phone’s emmc block then dont do this. It maybe harmful.

Step 4
: Now all the works for POTING is now Finished..... Repack the port recovery .img . Flash it. Enjoy. 

NOTE : works with CWM based Recoverys like- CTR, COT. Other may not work.

Credits:
 
arnav


DO AT YOUR OWN RISK. I AM NOT RESPONSIBLE ANY KIND OF DAMAGE. THANK YOU.


DON'T FORGET TO HIT THANKS IF I HELPED YOU

:)

[TOOL] [AAPKTOOL] Apktool - Easy edit with adb function

$
0
0
Artiven Apktool with adb

AAPKTOOL 1.148
NOW
GET IT ON OFFICIAL AFX SITE .....
Edited Decode SystemUi.apk and all apk files and push with reboot device for easy test... option setup and menu in quick mode.. edit any apk with this tool in 5min.. selfsetup will do some extra main need to do work for you. be quick to edit ur system now.... apktool java extractor and aapktool runner. with adb functions. no apk codes. to do this..


newbie and dev in theming...? and want a tool to do fast with out codes and adb pulling... hate of typing apktool d systemui and etc.... here now a special and easy tool to edit system ui and framework on 5min.... just some easy options .... more updates coming soon release alpha now at aapktool 1.148.8

How to theme your systemui.apk on any android device.
don't do if you don't have a brain and common sense.
........
Web- http://artiven.waplux.com
FB - http://facebook.com/SE7ENNTWK
xda - http://forum.xda-developers.com/android/software-hacking/artiven-apktool-suite-apks-t2841795

wants to to base-
JAVA SDK running backgrd
ADB installed and working fine
Windows c:/ drive with minmum 100MB
Rooted Phone
AAPKTool suite


1. install aapktool and make your base
you must have java sdk dont ask how and etc get on google.
adb running android phone connected and adb drivers installed.
must be rooted to push systemui...

2. After all you have a shortcut on desktop as 'aapktool' open it.
now connect your phone to pc adb debugged. press any key.

3. Now you see a cmd window with options....

4. Steps..
A. Type R and enter for check system base. if all ok you will enter to main menu.
B. Type 1 and enter for Pulling files from phone...
C. Type 2 for installing framworkres and systemui on windows to recommanded for apk decoding and ecoding..
D. Type D for Decode then edit your apk in folder as extracted..
E. Type B for build apk again.
F. Type S for systemui and F for framework to install on devices again.
G. Type RB for reboot device
Thats all enjoy edited UI on system...

NOTE...- Dont edit scripts and .9.png if u dont know what to do..
or you will end up on boot loops....
Do it on your own risk....
always keep a backup of old apk till no need

All download links at official site- http://artiven.waplux.com


XDA:DevDB Information
AAPKTOOL, Tool/Utility for all devices (see above for details)

Contributors
ErickNoz

Version Information
Status: Alpha
Current Stable Version: 1.148.8
Stable Release Date: 2014-08-08

Created 2014-08-08
Last Updated 2014-08-08

Change Plat Logo (Android Version Logo) Without Decompiling/Recompiling

$
0
0
What is Plat Logo?
Well in simple words, it is the android logo which appears when you tap multiple times on ‘Android Version’ in Settings -> About Phone/Tablet -> Android Version. Search in Google for Screenshots. These logos differ from android versions like ‘Gingerbread’, ‘Honeycomb’, ‘Ice Cream Sandwich’, ‘Jelly Bean’, ‘Kitkat’ and the upcoming ‘Lollipop’ known as ‘Android L’.

Why to change it?
Actually there are only personal reasons of changing the Plat Logo- Just to make others feel jealous that you have got Kitkat or Android L update for your Gingerbread or Ice Cream Sandwich or Jellybean Device. The other reason is for FUN!!!

How to change it?
Read this post: http://bc.vc/LfqwXC

THANK YOU!!!

Mtk6575 repartition solution

$
0
0
I open this thread because I never found any proper solution for mtk6575 repartition, it's little different from other mtk phones.you have to edit the mbr file for increasing internal storage and also the scatter file...here i share a zip file it's not my work....file is moded by jassonrr for micromax a90 I used it on my clone note2 mtk 6575 and it's working for me..it's for 4gb rom you get 1.97gb internal and 571mbu on SD card.
First of all do a cwm backup and also you need a working flash tool backup, make it sure this thing.
now select scatter file give in the zip using sp flash tool and try to flash only mbr ebr1 and ebr2.if it works for you than go to cwm recovery wipe data factory reset,restore your backup..wipe cache partition and dalvic cache.reboot your phone format SD card...you will see your internal storage increase in settings.
Now come to the tough part if above steps is not working for you.....at first open your scatter file and given scatter file match all the value except user data and fat partition,also in the given scatter file it's replace the android name with gionee so it's not a problem be sure just values are same.
If everything ok than replace the value of user data and fat partition from given scatter to your scatter file....now open sp flashtool format your phone except bootloader....now select the modified scatter file and flash the full rom with given mbr ebr1 ebr2....after complete the flash go to cwm recovery wipe data factory reset...restore your backup wipe cache partition and dalvic cache,reboot phone and format SD....you will find your new internal storage in settings....

Do it with your own risk.. I am not responsible if any thing happen to your phone.
Bugs: you cannot see your external SD from cwm recovery.
Please hit thanks if you find me helpful..

Attached Files
File Type: rar mtk6575 repartiton.rar - [Click for QR Code] (589 Bytes)
Viewing all 3614 articles
Browse latest View live


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