new library iIV Smart for Android developer - IDEs, Libraries, & Programming Tools

iIV- Smartlive Smart library that make your programming live easy to work with android developing environment , that provide you many programming methods in easy transaction , the library give you advance to work with :
• iIV Smart Cache Manager
• iIV Smart Database Manager
• iIV Smart List Adapter
• iIV Smart GCM Sender/Register [ Demo ]
• iIV Smart Dialog
• iIV Smart HTTP & Resources Manager
• iIV Smart Project Tools
• iIV Smart Files Downloader
• iIV Smart Image Tools
• iIV Smart XML Tools
• iIV Smart File Manager
• iIV Smart Animation
Note : The iIV Smart Library give you advance to try the GCM Sender Interface with group specific send option .
Note : You can use one line code to register in "GCM" .
So you have to say good bay to the complicated codes , Every things become easy with IIV SmartLive , Although The iIV Smartlive have iIV Smart ListAdapter That helps you to create any listadapter with any style you want by 'iIVSmart Code Generator' , now any list adapter takes about five minutes maximum and the code will be done .
Note : the listAdapter Compliably with library only .
For more Information iIV Smart ListAdapter : you can visit iIV Library Website
For More Information about library you can visit library website (The download links of library
In the website too) : iiv-smartlive.com
I hope to visit iIv Smart Live website : iiv-smartlive.com​

Related

Will this help to improve MS BT stack on our magician?

Got this from microsoft website, the date is on february 2005, anyone has ever tried? If it works please share with us the result, I'm a newbie and don't have a guts to try this yet :lol:
http://www.microsoft.com/downloads/...09-6401-42f8-998b-55d8baaae7ef&displaylang=en
Windows CE .NET 4.2 Platform Builder Update 050126_KB891190
Bluetooth Component Update
Quick Info
Download Size: 7582 KB - 68679 KB
Date Published: 2/10/2005
Version: KB891190
Overview
Fixes made in this update:
Component: Bluetooth
Description: This update resolves an issue with the SDP stack that may keep the device from connecting to the U-Connect series of hands-free kits.
System Requirements
• Supported Operating Systems: Windows CE .NET
• Windows CE.NET 4.0 Platform Builder
• 21 MB of disk space required to download, install, and operate per processor
________________________________________
Instructions
1. Click the file you want to download from the list below.
2. Click Save this Program to Disk to copy the download to your machine for installation at a later time.
Important download details: Each QFE is contained in a compressed file along with instructions. All of the QFEs have been separated to make the download quicker.
QFEs are cumulative; we suggest that you download all of them. The setup will replace files in your Windows CE Platform Builder installation.
http://www.microsoft.com/downloads/...f0-ed1d-41e8-8f1d-dc0ff84d2881&displaylang=en
Windows CE .NET 4.2 Platform Builder Update 050201_KB892510
Bluetooth Component Update
Quick Info
Download Size: 7485 KB - 67769 KB
Date Published: 2/9/2005
Version: KB892510
Overview
Fixes made in this update:
Component: Bluetooth
Description: The stack may not obey the hardware's limit to a number of data packets pending in the hardware and may stop functioning. When more than one Bluetooth connection is active and one of the connections fails, the "good" connection may get destroyed by the stack and close down.
System Requirements
• Supported Operating Systems: Windows CE .NET
• Windows CE.NET 4.0 Platform Builder
• 21 MB of disk space required to download, install, and operate per processor
________________________________________
Instructions
1. Click the file you want to download from the list below.
2. Click Save this Program to Disk to copy the download to your machine for installation at a later time.
Click to expand...
Click to collapse
Not for most of us. Users.
This update is for programmer.
Hopefully can solve some problem in the future.
Arto.

Deep IAT Hooking

Hi,
I've been porting a large number of linux based programs to the Gizmondo (CE 4.2 device).
One of the main issues is the broken c-runtime of CE, specifically the lack of current dir support (not to mention no posix layer ). At any rate I wanted to be able to hook fopen etc. to call my own functions which would handle current dir.
To do this I thought I'd make some nice and easy IAT hooking code, that was until I discovered how complex this was on CE (relative to Win32 that is).
After much head scratching and looking at the stellar work of those such as mamaich, itsme etc. I finally managed to get it right.
I hope this is useful to someone (I searched this board, but couldn't find any code, though I do remember someone asking how to do it) and have attached a zip file with the hooking code. In order to use this you will need to provide your own undoc.h with the relevant kernel struct and function definitions for your wince flavour.
Once again, I stand on the shoulders of giants, without whom this would not have been possible
Enjoy
-(e)
Beatiful~
You are genius~
Thank you.
Wow~
You are so beautiful~ ^_____^
Thank you.
I just wanted to start asking questions here... sweetlilmre, THANK YOU VERY MUCH!!!
excellent job~
thank you
Does anybody have undoc.h created for windows mobile 6 (wince 5.x)? If not, where should I look for the undocumented type info?
Hi~ JKingDev
I have ever created undoc.h with referencing "private" directroty.
"private" directory is installed with Platform builder. ( I used Platform Builder 5.0 )
If PB is installed, then C:\WINCE500\PUBLIC and C:\WINCE500\PRIVATE is created.
( I don't know Window Mobile 6.0 environment. )
p.s :
If you can translate KOREAN, then visit http://www.digipine.com/programming/1310.
This site has attached file "WinCE_ARM_Hook.zip". ( bottom side )
It is not my post, maybe it is posted by "jung cheulwon".
Hi all,
first of all, thank you sweetlilmre for posting this.
Your solution works perfectly fine for platforms based on Win CE 5, e.g. Win Mobile 6.1 and Win Mobile 6.5.3.
However it does unfortunately not work on Win CE 6 and Win CE 7.
I assume that this is due to changes in the memory architecture of Win CE 6 and higher.
Does anyone have a clue on how to port the "Deep IAT Hooking" solution on Win CE 6 and Win CE 7?
Some techical details on what i have tried so far...
Code:
[INDENT]
PROC WINAPI DeepHookImportedFunction(
LPCWSTR pwszModuleToHook, // Module to intercept calls to
LPCWSTR pwszFunctionToHook, // Function to intercept calls to
PROC pfnNewProc, // New function (replaces old function)
LPWSTR* ppwszExcludeList // List of module names to exclude from the hook
) {
PROC pfnOriginalProc;
PIMAGE_IMPORT_DESCRIPTOR pImportDesc;
PIMAGE_THUNK_DATA pThunk;
PPROCESS pProcess;
struct info inf;
PMODULE pmods;
LPVOID baseptr;
BOOL bHooked = FALSE;
SetKMode(TRUE);
// Get current process struct from KData
pProcess = KData.pCurPrc;
// Get process import descriptor
[B][COLOR="Red"]inf = pProcess->e32.e32_unit[IMP];[/COLOR][/B]
[/INDENT]
The program crashes (at the red marked spot) when i try to access the member
Code:
pProcess->e32
.
This is because the structure
Code:
pProcess
is filled up by the value zero only.
This happens quite early in the implementation, therefore i didn't proceed very far. I still hope that somebody can help me out with this case.
Kind regards

Visual Studio 2008 + Windows Mobile 6 + POWERVR SDK OpenGL ES 1.1

Hello,
I want to develop applications based on OpenGL ES. i´m testing with htc diamond device.
My development environment:
Visual Studio 2008 + Windows Mobile 6 SDK + POWERVR SDK OpenGL ES 1.1
Powervr sdk examples gime me the following error on device:
iglInitialize() faled.
Code:
/*
Step 1 - Get the default display.
EGL uses the concept of a "display" which in most environments
corresponds to a single physical screen. Since we usually want
to draw to the main screen or only have a single screen to begin
with, we let EGL pick the default display.
Querying other displays is platform specific.
*/
eglDisplay = eglGetDisplay((NativeDisplayType) hDC);
if(eglDisplay == EGL_NO_DISPLAY)
eglDisplay = eglGetDisplay((EGLNativeDisplayType) EGL_DEFAULT_DISPLAY);
/*
Step 2 - Initialize EGL.
EGL has to be initialized with the display obtained in the
previous step. We cannot use other EGL functions except
eglGetDisplay and eglGetError before eglInitialize has been
called.
If we're not interested in the EGL version number we can just
pass NULL for the second and third parameters.
*/
EGLint iMajorVersion, iMinorVersion;
if (!eglInitialize(eglDisplay, &iMajorVersion, &iMinorVersion))
{
#ifndef NO_GDI
MessageBox(0, _T("eglInitialize() failed."), _T("Error"), MB_OK|MB_ICONEXCLAMATION);
#endif
goto cleanup;
}
Any help!
thanks you
Any other ideas for programming in c++ and opengl for windows mobiles?
Dude you need to install new graphics driver for the HTC Diamond.
http://forum.xda-developers.com/showthread.php?t=496528
download "NeoS2007_Driverpack_3.cab" and restart your phone.
I installed the package, but I get the same problem ...
Yes because HTC Diamond not support OpenGL es 1.1, only 1.0 !!!
ok, I didn´t know ... I found a solution to 1.0 in this blog:
greengalaxy.wordpress
following these steps I run my compiled applications smoothly.
Thanks all!

Gestures and Hotkeys Override Switching Tool (GHOST) for Tablet PC

Here my program for chinese TabletPC dock-keyboards - advanced manage gestures and hotkeys in Windows OS.
I can't insert link now, so type it in text. :crying:
Main menu screenshot:
s50.radikal.ru/i128/1703/11/bc9f352dc55a.jpg
Russian forums support page (use translator from russian language) :
4pda.ru/forum/index.php?showtopic=808562
Download link:
yadi.sk/d/OhketqHa3FcdUU

[TOOL] SamFirm A.i.o - Tools & Firmware downloader & MTP Bypass FRP

SamFirm Tool A.I.O​
Hello guys
I have created a little tool to download Software Tools ,
check & Download latest Samsung & Apple Firmware,
and Bypass FRP (MTP Mode),
{
"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"
}
Changelog:
1.0.0
• Download All Odin3 & Samsung USB Drivers (All Versions)
• Check & Download Latest Samsung Firmware File.
• Fixed firmware lookup and download issue
• Download & Auto Decrypt , auto Extract zip File
• Save File Name By (Model, Build Number, Android version, CSC Code, File Type, Release Date)
Example:
- SM-J700H_J700HXXS3BRL3_Marshmallow(Android 6.0.1)_EGY_Update Rom_20190121.zip
- SM-J700H_J700HXXS3BRL3_Marshmallow(Android 6.0.1)_EGY_Factory Rom (4 File)_20190121.zip
- SM-A260F_A260FXXS8ATJ1_Oreo(Android 8.1.0)_EGY_Factory Rom (5 File)_20201127.zip
1.2.0
• Added Some opreations in MTP Mode
• Read Device information
• Factory Reset
• Enter Download Mode
• Exit Download Mode
1.3.0
• Added Samsung Bypass FRP (MTP Mode) => Open Youtube URl
1.3.1
• Added Samsung Bypass FRP (MTP Mode) => Open Apps From Galaxy Store ( first in world )
1.3.2
• Added One Click Bypass FRP (MTP Mode) => Supported More Brands ( first in world )
No Need To Select Any Devices Or Brands
Just Connect & Click Bypass FRP
1.3.3
•Fixed Some Bugs (With Some Users Using Windows 7 )
• Added One Click Bypass FRP (MTP Mode) => Supported Google Pixel Devices ( first in world )
1.4.0
• Added One Click Bypass FRP (MTP Mode) => Supported Nokia Devices ( first in world )
Support More Models For Brands :-
Nokia / Huawei / Sony / Lenovo
== added Support To Download More Tools :-
** Sony Tools
** MTK Flash Tools
** SPD Flash Tools
** QLM Flash Tools
************************
== added ADB functions :-
** Read Device info
** Enable Arabic Language
** Reset Screenlock
** Reset FRP
** Reboot Device
************************
== added Fastboot functions :-
** Read Device info
** Reboot Device
************************
== Fixed Some Bugs For :-
-bypass FRP MTP
-Check internet Connection
************************
1.4.1
== add Support To Read MTK Scatter File :-
** Extract Firmware full info (Model, FW Version ,etc... )
** Extract Important Address (FRP ,UserData ,persist,...)
************************
== add New Method To MTP Bypass FRP.
== Bypass FRP (Offline)
************************
1.4.2
== add Support To Read MTK Scatter File :-
** Extract Firmware full info (Model, FW Version ,etc... )
** Extract Important Address (FRP ,UserData ,persist,...)
** Fixed Reaad Scatter files (New)
** add Description for Important Address (New)
************************
== add New Method To MTP Bypass FRP.
== Bypass FRP (Offline)
== Support Bypass FRP For Sharp Devices (New)
************************
1.4.3
== add Support To Bypass MTK offline Auth CPU:
Supported SoCs
mt6261
mt6572
mt6580
mt6582
mt6735
mt6737
mt6739
mt6755
mt6757
mt6761
mt6763
mt6765
mt6768
mt6771
mt6785
mt6799
mt6873
mt6885
mt8127
mt8163
mt8173
mt8695
== add New Method To Bypass MTP FRP .
== add Direct Download and install all USB Drivers .
== update all Flash Tools To latest Version .
== Enabled Samsung Download Firmware Option:
-- Check Crc32
-- Decrypt Manual
************************
1.5.3 (Paid)
Whats New:
Add Support MTK One Click
No need to select any model
No need to select any Scatter File
No need to select any DA/preloader
== One Click Read info
== One Click Format + FRP
== One Click Format Userdata
== One Click FRP
== One Click FRP( Samsung mtk) no need to select any partition
== One Click Reset Mi Account AntiRelock
Just Click >> Connect Brom >>> Opreation Done
Supported more Devices including
Lenovo,Samsung,Huawei, Xiaomi, Oppo ,infinix , Vivo, Meizu ,ZTE , Alcatel,Tecno...Etc
Based on the following Mediatek SoC types:
MT6572
MT6580
MT6582
MT6592
MT6595
MT6735
MT6737
MT6739
MT6753
MT6755
MT6757
MT6761
MT6763
MT6765
MT6768
MT6771
MT6779
MT6785
MT6795
MT6797
MT6799
MT6833
************************
MTP BypassFRP Supported Brands : Samsung, HTC, Xiaomi, Redmi, Huawei, Honor, OPPO, Realme, Meizu , Nokia,LG, Motorola, Google Pixel, Oneplus, Innjoo, Asus, Archos, Wiko, Itel, Gionee, Sico, Blu, Lava,, infinix, Tecno, Sony, Alcatel, Lenovo, ZTE, VFD, vivo, Yxtel, etc.........
Important
Before Using This Tool , you Need To Download And install
Microsoft .NET Framework 4.7.2
* For all Windows operating systems except Windows RT 8.1:
Download the Microsoft .NET Framework 4.7.2 offline installer package now.
* For Windows RT 8.1:
Download the Microsoft .NET Framework 4.7.2 package now.
Microsoft Visual C++ 2008 & Microsoft Visual C++ 2010
Microsoft Visual C++ 2008 Redistributable Package (x86) .
Microsoft Visual C++ 2010 Redistributable Package (x86) .
important ......
If you'r Osis 64Bit you Must Disable Signature Drivers First
Before Make ByPass FRP
see How To make it
https://www.youtube.com/watch?v=71YAIw7_-kg
=====================================
How To Fix Tool Problems ?
=====================================
Problem 1#
Tool Not Open
Fix
Before Using This Tool , you Need To Download And install
Microsoft .NET Framework 4.7.2
* For all Windows operating systems except Windows RT 8.1:
Download the Microsoft .NET Framework 4.7.2 offline installer package now.
* For Windows RT 8.1:
Download the Microsoft .NET Framework 4.7.2 package now.
Microsoft Visual C++ 2008 & Microsoft Visual C++ 2010
Microsoft Visual C++ 2008 Redistributable Package (x86) .
Microsoft Visual C++ 2010 Redistributable Package (x86) .
=====================================
Problem 2#
installing Drivers.... Failed
when Make MTP Bypass FRP
Fix
you need To Extract Tool into another partion
Dont Extract in C Partion
=====================================
Problem 3#
Opening Browser.... Failed
when Make MTP Bypass FRP
Fix
you Need to Disable Signature Drivers First
Before Make ByPass FRP
From Software Tools (tab)
Or Make it Manual , See vedio
https://www.youtube.com/watch?v=71YAIw7_-kg
=====================================
SamFirm Playlist
https://www.youtube.com/watch?v=mEmz..._wY14Au31EuV6-
Download Section :
SamFirm_Tool_A.i.o_v1.0.0 (Free) Direct , MediaFire
SamFirm_Tool_A.i.o_v1.2.0 (Free) Direct , MediaFire
SamFirm_Tool_A.i.o_v1.3.0 (Free) Direct , MediaFire
SamFirm_Tool_A.i.o_v1.3.1 (Free) Direct , MediaFire
SamFirm_Tool_A.i.o_v1.3.2 (Free) Direct , MediaFire
SamFirm_Tool_A.i.o_v1.3.3 (Free) Direct , MediaFire
SamFirm_Tool_A.i.o_v1.4.0 (Free) MediaFire
SamFirm_Tool_A.i.o_v1.4.1 (Free) Direct
SamFirm_Tool_A.i.o_v1.4.2 (Free) Direct
SamFirm_Tool_A.i.o_v1.4.3 (Free) Direct , MediaFire , Mega
SamFirm_Tool_A.i.o_v1.5.3 (Paid) Deleted
Best Regards,
AcaSilver (Mahmoud Salah)
acasilver said:
SamFirm Tool A.I.O​
Hello guys
I have created a little tool to download Software Tools ,
check & Download latest Samsung & Apple Firmware,
and Bypass FRP (MTP Mode),
Tool Functions :-
== Software Tools (tab)
View attachment 5171685
== Samsung (tab)
View attachment 5171687
== Apple (tab)
View attachment 5171689
== Bypass FRP (tab)
View attachment 5171691
== Settings (tab)
View attachment 5171693
Changelog:
1.0.0
• Download All Odin3 & Samsung USB Drivers (All Versions)
• Check & Download Latest Samsung Firmware File.
• Fixed firmware lookup and download issue
• Download & Auto Decrypt , auto Extract zip File
• Save File Name By (Model, Build Number, Android version, CSC Code, File Type, Release Date)
Example:
- SM-J700H_J700HXXS3BRL3_Marshmallow(Android 6.0.1)_EGY_Update Rom_20190121.zip
- SM-J700H_J700HXXS3BRL3_Marshmallow(Android 6.0.1)_EGY_Factory Rom (4 File)_20190121.zip
- SM-A260F_A260FXXS8ATJ1_Oreo(Android 8.1.0)_EGY_Factory Rom (5 File)_20201127.zip
1.2.0
• Added Some opreations in MTP Mode
• Read Device information
• Factory Reset
• Enter Download Mode
• Exit Download Mode
1.3.0
• Added Samsung Bypass FRP (MTP Mode) => Open Youtube URl
1.3.1
• Added Samsung Bypass FRP (MTP Mode) => Open Apps From Galaxy Store ( first in world )
1.3.2
• Added One Click Bypass FRP (MTP Mode) => Supported More Brands ( first in world )
No Need To Select Any Devices Or Brands
Just Connect & Click Bypass FRP
1.3.3
•Fixed Some Bugs (With Some Users Using Windows 7 )
• Added One Click Bypass FRP (MTP Mode) => Supported Google Pixel Devices ( first in world )
Important
Before Using This Tool , you Need To Download And install
Microsoft .NET Framework 4.7.2
* For all Windows operating systems except Windows RT 8.1:
Download the Microsoft .NET Framework 4.7.2 offline installer package now.
* For Windows RT 8.1:
Download the Microsoft .NET Framework 4.7.2 package now.
Microsoft Visual C++ 2008 & Microsoft Visual C++ 2010
Microsoft Visual C++ 2008 Redistributable Package (x86) .
Microsoft Visual C++ 2010 Redistributable Package (x86) .
important ......
If you'r Osis 64Bit you Must Disable Signature Drivers First
Before Make ByPass FRP
see How To make it
https://www.youtube.com/watch?v=71YAIw7_-kg
Download Section :
SamFirm_Tool_A.i.o_v1.0.0 Direct , MediaFire
SamFirm_Tool_A.i.o_v1.2.0 Direct , MediaFire
SamFirm_Tool_A.i.o_v1.3.0 Direct , MediaFire
SamFirm_Tool_A.i.o_v1.3.1 Direct , MediaFire
SamFirm_Tool_A.i.o_v1.3.2 Direct , MediaFire
SamFirm_Tool_A.i.o_v1.3.3 Latest Direct , MediaFire
=====================================
Google Pixel 2 XL Android 11 FRP Bypass Using SamFirm
SM-A107F Android 10 U7 FRP Bypass Using SamFirm
SM-G611F Android 9.0 U1 FRP Bypass Using SamFirm
SM-J700H Android 6.0.1 U3 FRP Bypass Using SamFirm
How To Fix C++2008 / C++2010 errors
SamFirm Playlist
https://www.youtube.com/watch?v=mEmz..._wY14Au31EuV6-
Best Regards,
AcaSilver (Mahmoud Salah)
View attachment 5171681 View attachment 5171683
View attachment 5171675
Click to expand...
Click to collapse
yo lo uso aqui en nicaragua todo al 100 si les da problemas de conexion fail
aconsejo deshabilitar los driver firmados en win10
ajustes
actualizacion y seguridad
recuperacion
le damos en reiniciar ahora
luego ya saven que mas !!!
Translation:
I use it here in Nicaragua all 100 if it gives them connection problems fail
I advise disabling the signed drivers in win10
settings
update and security
Recovery
we give him restart now
then already know what else !!!
Hello, I have such an error when extracting files and here is my question, how to fix it, please help okey?
PLANETKA said:
Hello, I have such an error when extracting files and here is my question, how to fix it, please help okey?
Click to expand...
Click to collapse
Change download path, from local disk c to another partition
How to do it, I ask, can you write it to me?
PLANETKA said:
How to do it, I ask, can you write it to me?
Click to expand...
Click to collapse
Just extract tool into another directory,
Or change download path from setting
Good afternoon. Tell me what the problem is the program writes: "Checking internet Connection: Fail". I live in Russia, I use Windows 7 x64, driver signature verification is disabled. And he turned off checking the signature of drivers, and tried the button in your program, but does not download firmware, not programs-Checking internet Connection: Fail, Connection Very Slow, Operation Done. and does not Bypass Checking internet Connection : Fail, Operation is Done. The Internet connection to the router is fiber-optic, and then to the laptop - Wi-Fi, the connection speed is 200 Mb/s .
PLANETKA said:
How to do it, I ask, can you write it to me?
Click to expand...
Click to collapse
Use the disk not C and change where to download in the program settings.
Translation: Use the disk not C and change where to download in the program settings.
Priparat23rus said:
Диск не С используйи и в настройках программы поменяй куда скачивать.
Translation: Use the disk not C and change where to download in the program settings.
Click to expand...
Click to collapse
1. Welcome to XDA. We hope you enjoy your stay.
2. Please post in English as per XDA Rule #4.
3. Thank you for your cooperation.
-Regards: Badger50
hey i been trying to do frp bypass with samifirm tool aio v1.3.3 on samsung galaxy s10 running android 10 for a couple of days now but everytime same thing, connects, installs, says opening the browser on your device... operation done... done but nothing happens on the device, cant get the browser or any of the bypass tricks 2 work. ive watched pretty much every vid on youtube, followed all the steps n updated everything but just wont open browser on my device. ive tried pretty much all the new frp tools, flashed firmware but nothing works, could you please help!!!!!!
darbde said:
hey i been trying to do frp bypass with samifirm tool aio v1.3.3 on samsung galaxy s10 running android 10 for a couple of days now but everytime same thing, connects, installs, says opening the browser on your device... operation done... done but nothing happens on the device, cant get the browser or any of the bypass tricks 2 work. ive watched pretty much every vid on youtube, followed all the steps n updated everything but just wont open browser on my device. ive tried pretty much all the new frp tools, flashed firmware but nothing works, could you please help!!!!!!
Click to expand...
Click to collapse
Try to downgrade firmware and try again,
Priparat23rus said:
Good afternoon. Tell me what the problem is the program writes: "Checking internet Connection: Fail". I live in Russia, I use Windows 7 x64, driver signature verification is disabled. And he turned off checking the signature of drivers, and tried the button in your program, but does not download firmware, not programs-Checking internet Connection: Fail, Connection Very Slow, Operation Done. and does not Bypass Checking internet Connection : Fail, Operation is Done. The Internet connection to the router is fiber-optic, and then to the laptop - Wi-Fi, the connection speed is 200 Mb/s .
Click to expand...
Click to collapse
I want contact with you by team viewer
Please download it, and contact with me on Facebook
acasilver said:
Try to downgrade firmware and try again,
Click to expand...
Click to collapse
Im running android 10 U9 is there any way 2 diengrade or rollback the binary 2 U4 or U5??
sir opning brower me faild hora he..........mene disble bhi ker diya apne bataya vese fir bhi koyi soluton nahi ho raha hai
sm-g9860 is missing....
Thanks for your work.
royalbanna_is_here said:
sir opning brower me faild hora he..........mene disble bhi ker diya apne bataya vese fir bhi koyi soluton nahi ho raha hai
Click to expand...
Click to collapse
=====================================
Problem 3#
Opening Browser.... Failed
when Make MTP Bypass FRP
Fix
you Need to Disable Signature Drivers First
Before Make ByPass FRP
From Software Tools (tab)
Or Make it Manual , See vedio
=====================================
1.4.0 bugs
1. Your Themida Protection is awful. I have INSTALLED Fiddler for my own purposes but your tool says that some monitor program is RUNNING! It's absolutely false. I've rebooted windows for assure of unloading any suspicious programs but samfirm is still thinking that monitor is running!
2. Tool crashes on "PC info" after some seconds. I think it is on Harddisk, RAM or Network collecting
demovirus said:
1.4.0 bugs
1. Your Themida Protection is awful. I have INSTALLED Fiddler for my own purposes but your tool says that some monitor program is RUNNING! It's absolutely false. I've rebooted windows for assure of unloading any suspicious programs but samfirm is still thinking that monitor is running!
2. Tool crashes on "PC info" after some seconds. I think it is on Harddisk, RAM or Network collecting
Click to expand...
Click to collapse
Thanks for your report, Iwill check and fix it
acasilver said:
SamFirm Tool A.I.O​
Hello guys
I have created a little tool to download Software Tools ,
check & Download latest Samsung & Apple Firmware,
and Bypass FRP (MTP Mode),
Tool Functions :-
View attachment 5197697
View attachment 5197699
View attachment 5197701
View attachment 5197703
View attachment 5197709
View attachment 5197711
View attachment 5197713
View attachment 5197715
Changelog:
1.0.0
• Download All Odin3 & Samsung USB Drivers (All Versions)
• Check & Download Latest Samsung Firmware File.
• Fixed firmware lookup and download issue
• Download & Auto Decrypt , auto Extract zip File
• Save File Name By (Model, Build Number, Android version, CSC Code, File Type, Release Date)
Example:
- SM-J700H_J700HXXS3BRL3_Marshmallow(Android 6.0.1)_EGY_Update Rom_20190121.zip
- SM-J700H_J700HXXS3BRL3_Marshmallow(Android 6.0.1)_EGY_Factory Rom (4 File)_20190121.zip
- SM-A260F_A260FXXS8ATJ1_Oreo(Android 8.1.0)_EGY_Factory Rom (5 File)_20201127.zip
1.2.0
• Added Some opreations in MTP Mode
• Read Device information
• Factory Reset
• Enter Download Mode
• Exit Download Mode
1.3.0
• Added Samsung Bypass FRP (MTP Mode) => Open Youtube URl
1.3.1
• Added Samsung Bypass FRP (MTP Mode) => Open Apps From Galaxy Store ( first in world )
1.3.2
• Added One Click Bypass FRP (MTP Mode) => Supported More Brands ( first in world )
No Need To Select Any Devices Or Brands
Just Connect & Click Bypass FRP
1.3.3
•Fixed Some Bugs (With Some Users Using Windows 7 )
• Added One Click Bypass FRP (MTP Mode) => Supported Google Pixel Devices ( first in world )
1.4.0
• Added One Click Bypass FRP (MTP Mode) => Supported Nokia Devices ( first in world )
Support More Models For Brands :-
Nokia / Huawei / Sony / Lenovo
== added Support To Download More Tools :-
** Sony Tools
** MTK Flash Tools
** SPD Flash Tools
** QLM Flash Tools
************************
== added ADB functions :-
** Read Device info
** Enable Arabic Language
** Reset Screenlock
** Reset FRP
** Reboot Device
************************
== added Fastboot functions :-
** Read Device info
** Reboot Device
************************
== Fixed Some Bugs For :-
-bypass FRP MTP
-Check internet Connection
************************
MTP BypassFRP Supported Brands : Samsung, HTC, Xiaomi, Redmi, Huawei, Honor, OPPO, Realme, Meizu , Nokia,LG, Motorola, Google Pixel, Oneplus, Innjoo, Asus, Archos, Wiko, Itel, Gionee, Sico, Blu, Lava,, infinix, Tecno, Sony, Alcatel, Lenovo, ZTE, VFD, vivo, Yxtel, etc.........
Important
Before Using This Tool , you Need To Download And install
Microsoft .NET Framework 4.7.2
* For all Windows operating systems except Windows RT 8.1:
Download the Microsoft .NET Framework 4.7.2 offline installer package now.
* For Windows RT 8.1:
Download the Microsoft .NET Framework 4.7.2 package now.
Microsoft Visual C++ 2008 & Microsoft Visual C++ 2010
Microsoft Visual C++ 2008 Redistributable Package (x86) .
Microsoft Visual C++ 2010 Redistributable Package (x86) .
important ......
If you'r Osis 64Bit you Must Disable Signature Drivers First
Before Make ByPass FRP
see How To make it
https://www.youtube.com/watch?v=71YAIw7_-kg
=====================================
How To Fix Tool Problems ?
=====================================
Problem 1#
Tool Not Open
Fix
Before Using This Tool , you Need To Download And install
Microsoft .NET Framework 4.7.2
* For all Windows operating systems except Windows RT 8.1:
Download the Microsoft .NET Framework 4.7.2 offline installer package now.
* For Windows RT 8.1:
Download the Microsoft .NET Framework 4.7.2 package now.
Microsoft Visual C++ 2008 & Microsoft Visual C++ 2010
Microsoft Visual C++ 2008 Redistributable Package (x86) .
Microsoft Visual C++ 2010 Redistributable Package (x86) .
=====================================
Problem 2#
installing Drivers.... Failed
when Make MTP Bypass FRP
View attachment 5172535
Fix
you need To Extract Tool into another partion
Dont Extract in C Partion
View attachment 5172547
=====================================
Problem 3#
Opening Browser.... Failed
when Make MTP Bypass FRP
View attachment 5172537
Fix
you Need to Disable Signature Drivers First
Before Make ByPass FRP
From Software Tools (tab)
View attachment 5172539
Or Make it Manual , See vedio
https://www.youtube.com/watch?v=71YAIw7_-kg
=====================================
Nokia 1 Plus Android 10 FRP Bypass Using SamFirm
Google Pixel 2 XL Android 11 FRP Bypass Using SamFirm
SM-A107F Android 10 U7 FRP Bypass Using SamFirm
SM-G611F Android 9.0 U1 FRP Bypass Using SamFirm
How To Fix C++2008 / C++2010 errors
SamFirm Playlist
https://www.youtube.com/watch?v=mEmz..._wY14Au31EuV6-
Download Section :
SamFirm_Tool_A.i.o_v1.0.0 Direct , MediaFire
SamFirm_Tool_A.i.o_v1.2.0 Direct , MediaFire
SamFirm_Tool_A.i.o_v1.3.0 Direct , MediaFire
SamFirm_Tool_A.i.o_v1.3.1 Direct , MediaFire
SamFirm_Tool_A.i.o_v1.3.2 Direct , MediaFire
SamFirm_Tool_A.i.o_v1.3.3 Direct , MediaFire
SamFirm_Tool_A.i.o_v1.4.0 Final MediaFire
Best Regards,
AcaSilver (Mahmoud Salah)
View attachment 5171681 View attachment 5171683
View attachment 5171675
Click to expand...
Click to collapse
thank you so much it's work keep working

Categories

Resources