Samsung A12 Test Point.
Samsung A12 SM-A125 Test Point to remove FRP with MTK Port.
Open the device and short the test point with GND point as shown in the picture and the MTK port should
show up in the device manager.
{
"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"
}
mvikrant97 said:
Тест-пойнт Samsung A12.
Samsung A12 SM-A125 Test Point для удаления FRP с портом MTK.
Откройте устройство и замкните тестовую точку с точкой GND, как показано на рисунке, и порт MTK должен
появится в диспетчере устройств.
View attachment 5813419
Click to expand...
Click to collapse
Аккамулятор должен быть включен или отключен как на фото. Можно попросить больше информацции что это дает и можно ли снять родительскую блокировку.
stremm said:
Аккамулятор должен быть включен или отключен как на фото. Можно попросить больше информацции что это дает и можно ли снять родительскую блокировку.
Click to expand...
Click to collapse
In english please. I don't understand Russian language.
mvikrant97 said:
In english please. I don't understand Russian language.
Click to expand...
Click to collapse
The battery must be turned on or off as shown in the photo. You can ask for more information about what this gives and whether it is possible to remove the parental lock.
stremm said:
The battery must be turned on or off as shown in the photo. You can ask for more information about what this gives and whether it is possible to remove the parental lock.
Click to expand...
Click to collapse
Thankyou for that. If it does not work then you can perform it while the battery is connected to the phone and the device
will show up in the device manager as shown below.
Then you can use tools like UMT Multi Tool software or any other software to unlock the device.
Once the device is connected to the computer using USB just click on Execute and the device FRP
will be removed.
Related
English:
Hi all im going to porting glowpad efect to our caller need help by experts
Can we ported aosp glowpad button on our stock dialer? Can you give an assessment as an expert please
image:
{
"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"
}
I found sample of glowpad we can using it?
https://play.google.com/store/apps/details?id=net.sebastianopoggi.samples.ui.GlowPadSample
In order to use the GlowPadView in your project, follow these steps:
Ensure you have the Maven Central repository configured in your build.gradle file, eg.:
repositories {
mavenCentral()
}
This has to be in your app module's build.gradle or in the project's top-level build.gradle file. Android Studio puts it into the top-level file by default.
Add the dependency to your app's module build.gradle file, eg.:
Code:
dependencies {
// Your other dependencies...
compile 'net.frakbot.glowpadbackport:glowpadbackport:2.1.0'
}
Reference the GlowPadView in an XML layout (or initialise it from code)
Code:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<net.sebastianopoggi.ui.GlowPadBackport.GlowPadView
android:id="@+id/incomingCallWidget"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginTop="-10dp"
android:layout_marginBottom="-46dp"
android:background="@android:color/black"
android:visibility="visible"
android:gravity="top"
app:targetDrawables="@array/incoming_call_widget_2way_targets"
app:handleDrawable="@drawable/ic_in_call_touch_handle"
app:innerRadius="@dimen/glowpadview_inner_radius"
app:outerRadius="@dimen/glowpadview_target_placement_radius"
app:outerRingDrawable="@drawable/ic_lockscreen_outerring"
app:snapMargin="@dimen/glowpadview_snap_margin"
app:vibrationDuration="20"
app:feedbackCount="1"
app:glowRadius="@dimen/glowpadview_glow_radius"
app:pointDrawable="@drawable/ic_lockscreen_glowdot"/>
</RelativeLayout>
????
Profit!
Sample app
Click to expand...
Click to collapse
https://github.com/frakbot/GlowPadBackport
Русский:
Всем привет,
Хочу портировать АОСП кольцо с кнопками на нашу стоковую звонилку.
image:
Нашел код для внедрения как заверяет автор, в любое приложение!
Вы можете скачать образец с маркета и протестировать на своем аппарате.
https://play.google.com/store/apps/details?id=net.sebastianopoggi.samples.ui.GlowPadSample
Для того чтобы использовать GlowPAD в вашем проекте следуйте инструкции:
Убедитесь, что у вас есть the Maven Central репозиторий конфигурированная в build.gradle file, например.:
repositories {
mavenCentral()
}
This has to be in your app module's build.gradle or in the project's top-level build.gradle file. Android Studio puts it into the top-level file by default. - в силу отсутствия технических знаний я это оставлю без перевода
Add the dependency to your app's module build.gradle file, eg.:
Code:
dependencies {
// Your other dependencies...
compile 'net.frakbot.glowpadbackport:glowpadbackport:2.1.0'
}
Reference the GlowPadView in an XML layout (or initialise it from code)
Code:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<net.sebastianopoggi.ui.GlowPadBackport.GlowPadView
android:id="@+id/incomingCallWidget"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginTop="-10dp"
android:layout_marginBottom="-46dp"
android:background="@android:color/black"
android:visibility="visible"
android:gravity="top"
app:targetDrawables="@array/incoming_call_widget_2way_targets"
app:handleDrawable="@drawable/ic_in_call_touch_handle"
app:innerRadius="@dimen/glowpadview_inner_radius"
app:outerRadius="@dimen/glowpadview_target_placement_radius"
app:outerRingDrawable="@drawable/ic_lockscreen_outerring"
app:snapMargin="@dimen/glowpadview_snap_margin"
app:vibrationDuration="20"
app:feedbackCount="1"
app:glowRadius="@dimen/glowpadview_glow_radius"
app:pointDrawable="@drawable/ic_lockscreen_glowdot"/>
</RelativeLayout>
????
Profit!
Sample app
Click to expand...
Click to collapse
https://github.com/frakbot/GlowPadBackport
My friend finist1 make projects for aide you can using it
https://yadi.sk/d/E7xCPq8TdocFC
https://yadi.sk/d/hzZlbfa-docJq
He plug library now programmers can use it with app glowpad on full potential and take resources from it
Hello
I have installed update 1.06. It has great results
- Google Play works without problems:laugh::laugh::laugh:
- Google Sync works well (photos, contacts, calendar):laugh::laugh::laugh:
I advise everyone to download the update ..
{
"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"
}
Go the phone recovery and chose update os via otg.
https://drive.google.com/file/d/18tl7P9IWDJU0Day_zukPdHg8NQQY0ahz/view
This update is only for a device z17mini s
Thanks!
I installed it on my Nubia Z17 miniS and now Google Play Store and Google Sync is finally working.
It also solved the starting problem I had with some other apps.
monkeypunch8 said:
Thanks!
I installed it on my Nubia Z17 miniS and now Google Play Store and Google Sync is finally working.
It also solved the starting problem I had with some other apps.
Click to expand...
Click to collapse
:good::good::good::good::good::good:
Hi, I had modified ROM v217_Sekator from a Russian forum (4pda.ru), now I wanted to try this stock ROM.
I've made the wipes from TWRP and installed zip nx589j_ENCommon_V1.06_update, but when I reboot it gets stuck on "Nubia powered by android" screen.
What am I doing wrong? can you help me? Thanks
z17 mini s
csalap said:
Hi, I had modified ROM v217_Sekator from a Russian forum (4pda.ru), now I wanted to try this stock ROM.
I've made the wipes from TWRP and installed zip nx589j_ENCommon_V1.06_update, but when I reboot it gets stuck on "Nubia powered by android" screen.
What am I doing wrong? can you help me? Thanks
Click to expand...
Click to collapse
Добрый день,подскажите пожалуйста стабильную прашивку на zte nubia z17 mini s nx589j,у мня счас стоит v1.06 батарея моментально улетает...буду заранее благодарен)))
Friends, help me find the firmware nx589j_ENCommon_V1.06
Which one is the newest international model? and why can't I just update over the air? I have ENcommon v1.01 installed
{
"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"
}
I need Stock Firmware for my TV Box MXQ Pro 4k RK3229 WIFI chip S9012P - 2 Gb Ram/16 Gb with Android Nougat 7.2.1
My Box bricks and lost the Stock Firmware. I can unbrick it but lost the original firmware.
The ID of the board is MXQ_3229_V1.1 2018.09.27
Thanks a lot for your help !
Solucionado el tema !!!
How do you solve the problem? I have identical box on bricked status.
Yandex
Finds everything
yadi.sk
joselito54 said:
[IMG = "BOARD"] https://photos.app.goo.gl/XNxxka8hKNFafU4t5 [/ IMG]
Мне нужна стандартная прошивка для моего TV Box MXQ Pro 4k RK3229 WIFI chip S9012P - 2 Гб оперативной памяти / 16 Гб с Android Nougat 7.2.1
Мой Box кирпичи и потерял стоковую прошивку. Я могу разблокировать его, но потерял оригинальную прошивку.
ID платы: MXQ_3229_V1.1 2018.09.27.
Большое спасибо за твою помощь !
Click to expand...
Click to collapse
Подскажите, где взять прошивку, у меня такая же!!!
I need Stock Firmware for my TV Box MXQ Pro 4k RK3228a WIFI chip Sv6152P - 1 Gb Ram/8 Gb ( ONLY ONE Ram Chip is Kingston 08EMCP08 ) with Android Nougat 7.1.2
Board is MXQ-EP-2-V1.
Me too.
Alik1978 said:
[URL unfurl = "true"] https://yadi.sk/d/8s-uEWtv8txz_Q [/ URL]
View attachment 5252493
Click to expand...
Click to collapse
amigo nesecito informacion de esta placa
hola amigo mi caga es igual pero ese metodo no me funciona no me reconose mi pc ayufa porfa
Hi, does anyone have firmware of MXQ MAX, 4gb ram 32 gb rom, kingstone chipset, a53 cortex,amlogic?
Hello. I have one of these boxes with 8GB storage and 1 gb ram.
It is very annoying as it is very very slow while navigating through different settings or apps.
If I get it for example into an app to see a video from the usb disk, or in youtube, it runs reasonable.
But when you stop it and want to go for example in another app then your pulse goes sky high.
I can see it is currently running android version 7.1.2
kernel version 3.10.104 .
Does anyone have any advice on what to do to get it running better.
I saw some videos with this type of boxes running android 4. Should I go back to an older version?
I hope not to intrude too much.
Kind regards !
I have been exploring Vivo's ROMs but I keep coming across an item called BSPTEST.
After some investigation it seems like it is some Validation Testing tool.
So far I have came across 4 signs of BSPTEST in user ROMs.
Signs in boot logo
{
"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"
}
Signs in fastboot code
Signs in boot animation
APK package com.vivo.bsptest. Not distributing here.
Since I can't find any information about this, I decided to ask. If you have any information about this mode, please share it. I am highly interested.
I am thinking about how to get this on a retail device. Help will be appreciated.
Resources containing data uploaded will be attached.
no111one said:
Saya telah menjelajahi ROM Vivo tetapi saya terus menemukan item bernama BSPTEST.
Setelah beberapa penyelidikan, sepertinya itu adalah beberapa alat Pengujian Validasi.
Sejauh ini saya menemukan 4 tanda BSPTEST di ROM pengguna.
Masuk logo bootView attachment 5570111
Masuk dalam kode fastbootView attachment 5570113
Masuk animasi bootView attachment 5570115
Paket APK com.vivo.bsptest. Tidak mendistribusikan di sini.
Karena saya tidak dapat menemukan informasi tentang ini, saya memutuskan untuk bertanya. Jika Anda memiliki informasi tentang mode ini, silakan bagikan. Saya sangat tertarik.
Saya sedang memikirkan cara mendapatkannya di perangkat ritel. Bantuan akan dihargai.
Sumber daya yang berisi data yang diunggah akan dilampirkan.
Click to expand...
Click to collapse
wwhy i cannot installed
MuhammadRafiAsyddiq(ID) said:
wwhy i cannot installed
Click to expand...
Click to collapse
what
no111one said:
what
Click to expand...
Click to collapse
i cannot installed vivo bsp test
MuhammadRafiAsyddiq(ID) said:
i cannot installed vivo bsp test
Click to expand...
Click to collapse
i dont think any end user needs it
no111one said:
i dont think any end user needs it
Click to expand...
Click to collapse
how you install
Realme GT NEO 2 RMX3370
MsmDownloadTool_2.0.64(RMX3370íó-·+T¦¿+¦¦µ)
MsmDownloadTool_2.0.64 login require fix it
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
there is no fix.
why do u want to use msm?
i am Using Realme Gt Neo 2
Frist The Problem This is ,the current image(boot/recovery) have been destroyed
I am Now the Download Realme Gt Neo 2 Firmwear Download,
But MSM DOWNLOAD TOOL is login require
Other solution is working
but not open fastboot mod in keys
iam press Volume Down button and Power Button not working
How to Fastboot open Other solution iam trying
EDL mod ok msm download tool login require
Please Help me
yahoocool said:
i am Using Realme Gt Neo 2
Frist The Problem This is ,the current image(boot/recovery) have been destroyed
I am Now the Download Realme Gt Neo 2 Firmwear Download,
But MSM DOWNLOAD TOOL is login require
Other solution is working
but not open fastboot mod in keys
iam press Volume Down button and Power Button not working
How to Fastboot open Other solution iam trying
EDL mod ok msm download tool login require
Please Help me
Click to expand...
Click to collapse
Is your bootloader unlocked? Fastboot is only present if BL is unlocked.
Grobie13 said:
Is your bootloader unlocked? Fastboot is only present if BL is unlocked.
Click to expand...
Click to collapse
My bootloader is locked
yahoocool said:
Realme GT NEO 2 RMX3370
MsmDownloadTool_2.0.64(RMX3370íó-·+T¦¿+¦¦µ)
MsmDownloadTool_2.0.64 login require fix it View attachment 5624933
Click to expand...
Click to collapse
You can't use this tool
It is meant for use by Service Centers
Normal users do not have the username or password .
Take the phone to Service Center to get it fixed